home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000182_news@columbia.edu _Mon Feb 3 17:31:44 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id RAA06966
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 3 Feb 1997 17:31:43 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id RAA12927
  7.     for kermit.misc@watsun; Mon, 3 Feb 1997 17:31:42 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Doesn't stop after one screen
  12. Date: 3 Feb 1997 22:31:38 GMT
  13. Organization: Columbia University
  14. Lines: 41
  15. Message-ID: <5d5p0a$7p0$1@apakabar.cc.columbia.edu>
  16. References: <854988086.25703@dejanews.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6529
  19.  
  20. In article <854988086.25703@dejanews.com>,
  21. Tom Frenkel  <frenkel@cucis.cis.columbia.edu> wrote:
  22. : This problem has only started appearing in the last few months.
  23. : When I use Kermit (MS-DOS Kermit 3.13) to connect to a Unix machine
  24. : at Columbia, and go into the Pine mailer, the output doesn't stop
  25. : after one screenful, but keeps "running on".  This makes Pine
  26. : unusable.  Could anyone tell me how to deal with this problem?
  27. :
  28. It sounds like Pine does not know your terminal type.  Before you
  29. start Pine, type:
  30.  
  31.   echo $TERM
  32.  
  33. at the shell prompt.  What does it say?  It should say something like
  34. "vt100", "vt102", "vt320", etc.  If not, give the following command at
  35. the shell prompt:
  36.  
  37.   term vt102
  38.  
  39. (or vt220, or vt320, etc); whatever agrees with MS-DOS Kermit's emulation.
  40.  
  41. If you believe your terminal type is set correctly, but you still have
  42. this problem, then maybe UNIX somehow got the wrong idea about your
  43. screen diemensions.  What does it says about "rows" and "cols" when you
  44. type:
  45.  
  46.   stty all
  47.  
  48. Try giving the following command at the shell prompt before starting Pine:
  49.  
  50.   stty rows 24 cols 80
  51.  
  52. and see if that fixes things up.  (NOTE: the "term" and "stty" commands
  53. shown above are for SunOS, which is used at Columbia -- different commands
  54. or syntax might be used on other UNIX versions.)
  55.  
  56. Meanwhile, a hint about viewing material that scrolled past too fast for you
  57. to read it: just use the PageUp and PageDown keys to scroll backwards and
  58. forwards in the terminal screen.
  59.  
  60. - Frank